Package pptx4j.slide

Source Code of pptx4j.slide.AsposeTraverseSlides

package pptx4j.slide;

import com.aspose.slides.ISlide;
import com.aspose.slides.Presentation;

public class AsposeTraverseSlides
{
  public static void main(String[] args)
  {
    //Instantiate a Presentation object that represents a presentation file
    Presentation pres = new Presentation("data/pptx4j/presentation.pptx");

    //Accessing slides
    for (ISlide slide : pres.getSlides())
    {
      System.out.println(slide.getSlideNumber());     
    }
  }
}
TOP

Related Classes of pptx4j.slide.AsposeTraverseSlides

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.